home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-12-05 | 488 b | 27 lines | [TEXT/MPS ] |
- /*
- File: mtb1.c
- Contains: QuickTime Installation Functions
- Written by: DTS and QT Engineering
- Copyright: © 1992-1994 by Apple Computer, Inc., all rights reserved.
- Change History (most recent first):
- <1> 12/4/94 khs changed the format of the file to the new look and feel
- To Do:
- */
-
-
- // INCLUDES
- #include "mtb.h"
-
-
- // FUNCTIONS
- Boolean IsQuickTimeInstalled(void)
- {
- short error;
- long result;
-
- error = Gestalt(gestaltQuickTime, &result);
- return (error == noErr);
- }
-
-
-